|
|
Hello,
This is part of an agent running on Lotus Domino server (Linux OS). We need evaluate a week day to skip weekend days but this allways return 1. We developed over Windows server and wrok fine, but after pass this to praduction environment the error described close
nHoy = Format(Now(), "dd/mm/yyyy")
wHoy = Weekday(nHoy)
nFeriados = Feriados("1", dbcon)
If nFeriados(0) <> "" Then
vFeriado = IsNull(ArrayGetIndex(nFeriados,nHoy))
If vFeriado = False Then
Exit Sub
End If
End If
Please anybody can help us to solve this problem o how we can to obtain the same result : Day of the Week to skip weekend days.
Thanks for any idea. |